home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
EnigmA Amiga Run 1996 March
/
EnigmA AMIGA RUN 05 (1996)(G.R. Edizioni)(IT)[!][issue 1996-03][Skylink CD IV].iso
/
earcd
/
util1
/
intrpl40.lha
/
Interplay4.0゚
/
Interplay.Install
< prev
next >
Wrap
Text File
|
1995-10-24
|
1KB
|
67 lines
; Installer script for Interplay
(set dirname
(askdir
(prompt "Where would you like Interplay to be installed?\n(No drawer will be made)")
(help @askdir-help)
(default "c:")
)
)
(set @default-dest dirname)
(copyfiles
(prompt "Copying Interplay to desired place.")
(help @copyfiles-help)
(source "Interplay")
(dest dirname)
(infos)
(confirm)
)
(set guidename
(askdir
(prompt "Where would you like the documentation to be installed?")
(help @askdir-help)
(default dirname)
)
)
(copyfiles
(prompt "Copying Interplay.Guide to desired place.")
(help @copyfiles-help)
(source "Interplay.Guide")
(dest guidename)
(infos)
(confirm)
)
(copyfiles
(prompt "Copying preferences files to Env:")
(help @copyfiles-help)
(source "env/")
(dest "ENV:")
(all)
(confirm)
)
(copyfiles
(prompt "Copying preferences files to Envarc:")
(help @copyfiles-help)
(source "env/")
(dest "ENVARC:")
(all)
(confirm)
)
(if
(exists "s:interplay.list")
(message "Interplay list allready exists. Will NOT copy a new one.")
(copyfiles
(prompt "Copying Interplay.list to s:")
(help @copyfiles-help)
(source "s/Interplay.list")
(dest "s:")
(confirm)
)
)